what is Static keyword in C#?
1590
04-May-2017
Manish Kumar
04-May-2017Static is a keyword used with class. It can be also used with method,member,field, property . If a class is made static then all the member of class should be of static type. We use static variable when we need only one copy of it.